ActiveReports 8
DataBindXY(IEnumerable,IEnumerable[]) Method
See Also 
GrapeCity.ActiveReports.Chart.v8 Assembly > GrapeCity.ActiveReports.Chart Namespace > DataPointsCollection Class > DataBindXY Method : DataBindXY(IEnumerable,IEnumerable[]) Method

xValueEnumerable
Specifies the data source that will supply the X values for the DataPoints. The first available column will be used.
yEnumerableValues
Specifies the Y value(s) of the DataPoint object added to the collection (one or more comma-separated values).

Glossary Item Box

Binds the X value and Y values of the collection's DataPoints to the first column(s) of the specified data source(s).

Syntax

Visual Basic (Declaration) 
Public Overloads Sub DataBindXY( _
   ByVal xValueEnumerable As System.Collections.IEnumerable, _
   ByVal ParamArray yEnumerableValues() As System.Collections.IEnumerable _
) 
C# 
public void DataBindXY( 
   System.Collections.IEnumerable xValueEnumerable,
   params System.Collections.IEnumerable[] yEnumerableValues
)

Parameters

xValueEnumerable
Specifies the data source that will supply the X values for the DataPoints. The first available column will be used.
yEnumerableValues
Specifies the Y value(s) of the DataPoint object added to the collection (one or more comma-separated values).

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also